*, *:after, *:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none;
    font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, button,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

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

body {
    line-height: 1;
    height: 100vh;
	width: 100vw;
	overflow-x: auto;
	overflow-y: auto;
}

blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-spacing: 0;
}

small {
    font-size: 80%;
}

b, strong {
    font-weight: bold;
}

/* TEMPLATES */

body.theme-style-software nav#global{
	height: 75px !important;
	padding: 26px 0px !important;
}


/* HEADER */

header{
    min-height: 65px;
    width: 100%;
    display: block;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 9999;
    background-position: bottom center;
    background-size: cover;
    -webkit-transition: background-color 300ms ease-in-out,-webkit-box-shadow 300ms ease-in-out,-webkit-transform 0.3s, height 0.2s ease-in;
    transition: background-color 300ms ease-in-out,-webkit-box-shadow 300ms ease-in-out,-webkit-transform 0.3s, height 0.2s ease-in;
    transition: box-shadow 300ms ease-in-out,background-color 300ms ease-in-out,transform 0.3s, height 0.2s ease-in;
    transition: box-shadow 300ms ease-in-out,background-color 300ms ease-in-out,transform 0.3s,-webkit-box-shadow 300ms ease-in-out,-webkit-transform 0.3s, height 0.2s ease-in;
}

#header-breadcrumb{
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow: hidden;
    height: 60px;
    opacity: 0;
}

#header-breadcrumb:empty,
body.scrollBelow50px #header-breadcrumb{
    height: 0px;
    opacity: 0;
}

body.application #header-breadcrumb{
    display: none !important;
}

#header-frame{
    margin: 0px auto;
    min-height: 80px;
    max-height: 140px;
    width: 100%;
    max-width: 1136px;
    padding: 20px 0px 0px;
}

#header-frame img{
    max-width: 100%;
    max-height: 100%;
    max-height: 80px;
    height: auto;
    width: auto;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

body.scrollBelow50px #wpadminbar{
    display: none !important;
}

body.scrollBelow50px.admin-bar header{
        margin-top: 0px !important;
    }

body.home:not(.scrollBelow50px) #header-frame .logo-section img{
    max-height: 130px;
}

body.wide-header header,
body.home.scrollBelow50px.has-header-image header{
    height: 65px !important;
    min-height: 65px !important;
}

body.home.scrollBelow50px.has-header-image header #header-fram{
    padding: 20px 0px;
}

body.wide-header #header-frame{
    margin: 0px !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 10px 0px !important;
}

body.wide-header nav#global{
    width: calc( 100% - 350px ) !important;
}

body.wide-header .logo-section{
    display: none;
}

body.home ul.category-list {
    display: flex !important;
}

.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;
}

body ul.category-list li{
    display: inline-block;
    height: 170px;
    width: 315px;
    padding: 15px 10px !important;
    min-width: 100px;
    margin: 0px 20px 20px 0px !important;
    list-style-type: none;
}

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

ul.category-list li a.read-more,
.tile.detail a.read-more{
    opacity: 0;
    text-indent: -1000px;
    font-size: 0px;
    overflow: hidden;
}


/* LOADER */

body .loading{
    position: relative;
}

body .loading:empty::before,
body .toolbar-button.loading::before,
body button.loading::before,
#export-preview-helper.loading::before{
    display: block;
    content: "";
    position: absolute;
    top: 45%;
    top: calc(50% - 30px);
    left: 45%;
    left: calc(50% - 30px);
    border: 5px solid #fbfbfb !important;
    border-top: 5px solid rgba(36, 30, 31, 0.2) !important;
    border-radius: 50%;
    background: none !important;
    width: 60px;
    height: 60px;
    animation: fadein 300ms, spin 2s ease-in-out 400ms infinite !important;
}

@keyframes fadein {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CONTENT */

content {
    width: 100%;
    min-height: calc(100vh - 140px);
    margin: 140px auto 0px;
    max-width: 1136px;
    padding: 60px 0px;
    box-sizing: border-box;
    display: block;
}

body.single-post #post-content{
    max-width: 800px;
    margin: 0px auto;
}

aside.widget{
	width: 680px;
	float: none;
	display: block;
	margin: 200px auto 50px;
	position: relative;
}

aside.widget + content{
    margin-top: 0px;
}

body.wide-header content {
    min-height: calc(100vh - 65px);
    margin: 65px auto 0px;
    padding-bottom: 200px !important;
}

body.wide-header.single-post content,
body.wide-header.page content,
body.wide-header.read content{
	max-width: 720px !important;
}

content .fixed-section{
	width: 700px;
	display: block;
	clear: both;
	margin: 50px auto;
}

content .fixed-section.width-700{
	width: 700px;
}

content .fixed-section.width-600{
	width: 600px;
}

/* NAV */

nav#global {
    width: 100%;
    display: inline-block;
    height: 70px;
    padding: 20px 0px;
    position: relative;
    top: -20px;
    margin-left: 30px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -o-user-select: none;
    -moz-user-select: none;
}

nav#global > ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    max-width: calc(100% - 280px);
    text-align: center;
}

nav#main [contenteditable="true"],
nav#main .make-contenteditable{
	padding: 2px 10px;
}

/* APPLICATION NAV */

nav#main{
	height: auto;
	width: 300px;
	z-index: 1;
	opacity:0;
	overflow: hidden;
	position: absolute;
	margin-left: -280px;
	bottom: 0;
	top: 0;
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	background-color: rgba(255,255,255,0.92);
	border-right: 1px solid #eeeeee;
	min-height: 100vh;
	padding: 100px 20px 500px 30px;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	box-shadow: 0px 0px 10px rgba(0, 0, 0,0.1);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0,0.1);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0,0.1);
}


body:not(.loading) nav#main *:not(.ui-sortable-helper){
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	outline: none;
}

body.wide-header.show-mobile-menu nav#main,
body.wide-header.hint-mobile-menu nav#main{
    margin-left: 0px;
    overflow: visible;
    opacity: 1;
    min-height: 500vh;
    z-index: 9;
    display: table;
}

.nav-sticky{
	margin-bottom: 100%;
}

nav#main .menu-item a{
    padding: 20px;
    font-size: 17px !important;
    border-bottom: 1px solid #eee;
    color: var(--brand-color, black);
    width: 100%;
    display: block;
}

nav#main .menu-item a:hover{
    background: var(--brand-color-10pc);
}

nav#main ul.menu{
    margin: 0px !important;
    padding: 0px !important;
}

nav#main .menu-item{
    list-style: none !important;
}

body.show-mobile-menu content::after{
	content: '';
	position: fixed;
	display: block;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 500vh;
	z-index: 2;
	background: rgba(0,0,0,0.3);
}

body.show-mobile-menu #detail-view{
	pointer-events: none;
}

body.show-mobile-menu footer{
	opacity: 0;
}

body.show-mobile-menu #toolbar{
	opacity: 0;
}

nav#main .master-item{
	background: transparent;
	border-radius: 8px;
	margin: 10px 0px;
	padding-bottom: 4px;
	width: 100%;
	display: block;
	clear: both;
	text-align: left;
	height: 50px;
	min-height: 50px;
	cursor: pointer;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

nav#main .master-item.active,
nav#main .master-item.child-active{
	height: auto;
}

nav#main .separator{
	margin: 80px 0px 10px 0px;
	font-family: var(--heading-font);
	width: initial;
	width: 100%;
	max-width: initial;
	display: inline-block;
	padding-top: 17px;
	clear: both;
	line-height: 40px;
    font-size: 15px;
    font-weight: 300;
    color: #888;
    text-indent: 20px;
    border-top: 1px solid #eee;
}

nav#main .back-button{
	cursor: pointer;
	border: none;
	margin-bottom: 0px;
	margin-top: 15px;
	padding-top: 10px;
}

/* MOBILE MENU */

#menu-mobile{
	z-index: 9999 !important;
	display: none;
	position: relative;
}

#menu-mobile .toggle{
	cursor: pointer;
    display: block;
    width: 18px;
    height: 30px;
    position: absolute;
	-webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    right: 35px;
    top: 17px;
}

#menu-mobile::after{
    position: absolute;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    width: 40px;
    height: 40px;
    background: #eee;
    display: block;
    content: "";
    border-radius: 100px;
    z-index: -1;
    opacity: 1;
    left: 34px;
    top: 2px;
}

/* NAV - STYLE */

.site-title ~ nav#global {
    width: calc(100% - 360px);
}

nav#global .menu-item{
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

header.logo-full-width nav#global{
	margin-left: 0px;
	padding: 0px;
	top: 0px;
	width: 100%;
}

nav#global > ul > li.menu-item{
	border-radius: 6px;
	margin: 0px 8px;
}

nav#global ul:not(.sub-menu) {
	white-space: nowrap;
}

header.logo-full-width nav#global ul{
	padding: 0px;
	margin: 0px;
	text-align: left;
}

nav#global ul.menu > li > .sub-menu{
	display: none;
	white-space: normal;
	position: absolute;
	text-align: left;
	width: initial;
	left: 0px;
	top: 100%;
	padding: 10px 0px !important;
}

nav#global li.menu-item-has-children a {
	z-index: 9999;
	position: relative;
}

nav#global ul.menu > .menu-item-has-children:hover > .sub-menu{
	display: block;
	border-top-left-radius: 0px;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: calc(100% + 20px);
}

nav#global ul.menu > .menu-item-has-children:hover > .sub-menu .sub-menu{
    background: white;
}

nav#global .sub-menu li {
	clear: both;
	display: block !important;
	white-space: nowrap;
	padding: 0px;
}

nav#global .sub-menu .sub-menu li{
    padding-left: 20px;
}

nav#global .sub-menu .sub-menu li::before{
    display: inline-block;
    position: absolute;
    top: 8px;
    content: '-';
    opacity: 0.2;
}

nav#global .menu-item-has-children ul a{
	width: 100% !important;
	display: block !important;
	margin: 0px !important;
	white-space: nowrap;
	text-align: left;
	padding: 12px 16px;
	border-radius: 0px !important;
}

nav#global ul.menu > .menu-item-has-children:hover{
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav#global > ul > .menu-item > a::after {
    width: 0px;
    content: "";
    display: block;
    position: absolute;
    bottom: 8px;
    left: 30px;
    border-bottom: 2px solid var(--brand-color, rgb(0, 122, 255));
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
}

nav#global > ul > .current-menu-item > a::after,
nav#global > ul > .menu-item > a:hover::after {
    width: calc( 100% - 16px );
    left: 8px;
    border-radius: 6px;
    border-bottom: 2px solid var(--brand-color, rgb(0, 122, 255));
}


nav#global > ul > .current-menu-ancestor > a::after {
    width: calc( 100% - 16px );
    left: 8px;
    border-radius: 6px;
    border-bottom: 2px solid var(--grey, rgb(0, 122, 255));
}

body.show-search nav#global ul li:not(.menu-search):not(.search-button){
	display: none !important;
}

nav#global li {
    display: inline-block;
}

nav#global li {
    display: inline-block;
}

nav#global a {
    text-decoration: none;
    color: #767171;
    font-family: var(--heading-font);
    font-weight: 500;
    padding: 12px;
    display: inline-block;
    font-size: 15px;
}

nav#global .menu-item-description {
	padding: 4px 0px;
	font-size: smaller;
	color: var(--grey-dark);
	clear: both;
	display: block;
}

body.has-header-image nav#global > ul > .menu-item:not(.menu-search):not(.transparent){
	background-color: var(--brand-color-10pc, rgb(0, 122, 255));
}

body.has-header-image nav#global > ul > .menu-item > a{
	color: var(--brand-color, rgb(0, 122, 255)) !important;
}

nav#global .menu-item:hover{
	background-color: var(--brand-color-10pc, rgb(0, 122, 255));
}

nav#global a:hover,
nav#global .current-menu-item > a{
	color: var(--brand-color, rgb(0, 122, 255)) !important;
}



nav#global > ul > .menu-item:not(.menu-item-has-children):hover a{
	color: var(--brand-color, rgb(0, 122, 255)) !important;
}

/* LOGIN */

header #extra-menu{
    position: absolute !important;
    right: 50px;
    display: inline-block;
}

/* TABLES */

table{
    margin: 50px 0px;
    border-radius: 5px;
    font-weight: 400;
    width: 100%;
    min-height: 150px;
    position: relative;
    border: 1px solid rgb(241, 241, 241);
    box-shadow: 0px 2px 2px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
    -ms-box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
    background: white;
}

th, td {
    padding: 24px;
    text-align: left;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center 8px;
    vertical-align: middle;
}

/* BUTTONS */

button,
.button{
    border: 1px solid rgba(0,0,0,.15);
    background: white;
    position: relative;
    color: rgba(0,0,0,.44);
    height: 37px;
    padding: 0px 16px;
    font-size: 18px;
    border-radius: 6px;
    box-sizing: border-box;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    display: inline-block;
    text-decoration: none;
    margin: 10px 10px 10px 0px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;           /* non-prefixed version, currently */
    outline: none;
}

button.go,
.button.go{
    min-width: 180px;
    border-color: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-color: var(--brand-color, rgb(0, 122, 255));
    font-size: 20px;
    height: 60px;
    margin-right: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: 700;
    font-family: var(--heading-font);
}

content h2,
content h3,
content h4,
content p,
content figure,
content li{
    margin: 40px auto;
}

p + h2 {
    margin-top: 80px;
}

body.single-post content{
    width: 100vw;
    max-width: initial;
}

body.page content #post-content{
    margin: 0px auto;
    padding: 40px;
}

body.single-post content #post-content,
body.single-post content #comments{
    max-width: 800px;
    margin: 0px auto;
}

body.single-post .google-auto-placed{
    max-width: 680px;
    margin: 0px auto;
}

/* FOOTER */

footer{
    min-height: 600px;
    clear: both;
    background: white;
    color: #767171;
    font-size: .9em;
    font-weight: 300;
    padding: 100px 10% 20px;
    cursor: default;
    border-top: 1px solid #f4f4f4;
}

footer aside + aside{
    margin-top: 100px;
}

footer li {
    margin: 10px 0px;
}


.skeleton{
    background: #ccc;
    width: 3em;
    display: inline-block;
    height: 0.8em;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.skeleton.medium{
    width: 6em;
}

.skeleton.wide{
    width: 12em;
}

.wp-block-embed-youtube .skeleton,
.wp-block-embed-youtube iframe{
    border-radius: 0px;
    display: block;
    width: 900px;
    height: 506px;
    max-width: calc( 100vw - 80px) !important;
}

.wp-embed-aspect-4-3 .skeleton,
.wp-embed-aspect-4-3 iframe{
    max-height: calc( ( 100vw - 80px ) * 0.75 );
}

.skeleton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
  content: "";
}
@-webkit-keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Short screens */
@media only screen and (max-height : 1024px)  {

    .modal-content{
        height: calc(75vh - 110px);
    }
    
}

/* iPad Pro */
@media only screen and (max-height : 1024px)  {
	
	.modal.active .modal-box{
		margin: 30px auto 0px;
		height: calc( 100vh - 30px);
	}
	
}

/* iPad */
@media only screen and (max-width:900px) {

    content{
        padding: 60px 40px;
    }
}

/* iPad and larger */
@media only screen and (min-width : 768px)  {
    
    body.single-post #header-content:not(:empty) ~ content #post-content{
        position: relative;
    }

    body.single-post #header-content:not(:empty) ~ content #post-content::before{
        content: "";
        display: block;
        width: calc( 100% + 80px );
        height: 300px;
        left: -40px;
        z-index: -1;
        top: -40px;
        position: absolute;
        background: #fafafa !important;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        box-shadow: 0px -8px 2px rgba(0,0,0,0.05);
        -webkit-box-shadow: 0px -8px 10px rgba(0,0,0,0.05);
        -moz-box-shadow: 0px -8px 10px rgba(0,0,0,0.05);
        -ms-box-shadow: 0px -8px 10px rgba(0,0,0,0.05);
    }

}

/* iPad */
@media only screen and (max-width : 1112px)  {
    
    content{
        padding: 20px !important;
    }

    h1 {
        font-size: 28px;
    }
    
    body.home:not(.logged-in) h1 small{
        font-size: 23px;
    }
    
    .modal-introduction{
        padding: 0px 150px;
    }
    
    .modal-content{
        height: calc(75vh - 110px);
    }
    
}


/* iPhone */
@media only screen and (max-width:568px) {
    
    aside.widget{
        margin-top: 110px;
    }
    

	.hero{
		margin-bottom: 210px;
		font-size: 20px;
	}
 
    .search-form .button {
		height: 60px;
		line-height: 30px;
		font-size: 13px;
		width: 100%;
		display: block;
    }
    
    .search-form .button::after{
		display: none !important;
	}
	
	header .search-box,
	content .search-box{
		margin: 30px 0 !important;
		width: 100% !important;
		height: 200px;
		margin-bottom: 100px !important;
		position: relative !important;
		display: none !important;
		clear: both;
	}

	header .search-form{
		padding: 30px;
		width: 100% !important;
	}

	header .search-form,
	content .search-form{
		width: 100%;
		height: 240px;
		margin: 0px;
		display: block !important;
		clear: both !important;
	}

	.search-form .selectize-control{
		width: 100%;
		display: block;
		clear: both;
		margin: 0px !important;
		height: auto;
	}

	.search-form select:first-of-type + .selectize-control .selectize-input::after{
		display: none !important;
	}
	
	.search-helper{
		display: none;
	}
	
	.search-form .selectize-input{
		width: 100%;
		padding: 20px 30px;
		height: 100%;
		line-height: 100%;
		display: block;
		margin: 0px !important;
		clear: both;
	}
        
    /* BODY */

    body.page content #post-content,
    body.single-post content #post-content,
    body.single-post content #comments{
        padding: 20px;
    }

    body.admin-bar.has-header-image:not(.home) header{
        position: initial;
    }
 
    a.cta:not(.button)::after{
        top: -9px;
    }
    
    .subscribe-description{
        margin-top:40px;
        margin-left: 10px;
    }
    
    h1.frontpage-header{
        margin-top: 0px !important;
    }
    
    h1.frontpage-header em:before{
        width: 100%;
        max-width: 100%;
    }

    #header-breadcrumb{
        display: none !important;
    }

    body.single-post .google-auto-placed{
        max-width: 100%;
        margin: 20px;
    }

    aside.widget{
        margin: 20px auto !important;
        padding: 20px;
        max-width: 100%;
    }

    body.admin-bar header{
        margin-top: 0px;
    }
    
    content {
        padding: 20px;
    }
    
    p {
        margin: 10px 0px;
    }
    
    h1, h2, h3, h4 {
        line-height: initial;
    }
    
    #toolbar{
        display: none !important;
    }
    
    header.logo-full-width .logo-section {
        position: absolute;
        top: 15px !important;
        left: 20px !important;
        width: calc( 100% - 120px);
        height: 45px !important
    }
 
    body:not(.home) header.logo-full-width img,
    body.home.scrollBelow50px header.logo-full-width img,
    body.wide-header header.logo-full-width img{
        max-height: 45px !important
    }
    

    #menu-mobile::before,
    #menu-mobile:hover::before{
        opacity: 0 !important;
        display: none !important;
    }
 
     /* Header - Mobile */
    
    header {
        width: 100% !important;
        position: relative !important;
        clear: both !important;
        margin: 0px !important;
        height: 60px !important;
        box-sizing: content-box;
        display: block;
        background-position: bottom center !important;
    }

    body.show-search header{
        height: 250px !important;
    }
    
    #header-frame {
        margin: 0px auto 15px auto;
        padding: 0px !important;
    }

    body.show-search #header-frame{
        height: 300px;
    }
    
    body:not(.home) header.logo-full-width,
    body.home.scrollBelow50px header.logo-full-width,
    body.wide-header header.logo-full-width {
        height: 60px !important;
    }
    
    .site-title {
        font-size: calc(var(--brand-size, 22) * 0.6px);
        width: calc( 100% - 80px) !important;
        padding: 15px 30px !important;
        z-index: 9999;
        height: 60px !important;
    }
    
    #site-title-name {
        display: inline-block;
    }

    #site-title-dot {
        display: inline-block;
    }
    
    #menu-mobile{
        display: block !important;
        top: 10px !important;
        position: absolute !important;
        width: 40px !important;
        right: 50px !important;
    }
    
    #menu-mobile .toggle{
        z-index: 9999;
    }
    
    nav#global {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 60px;
        display: none;
        padding: 20px;
        margin: 0px;
    }
    
    /* Chat - Mobile */

	content .fixed-section{
		width: 100%;
	}

	body.chat .user-profile,
	body.chat.recipient-user .user-profile,
	body.chat.recipient-admin .user-profile{
		position: initial;
		margin: 0px;
		width: 80vw;
	}

	.chat-subject,
	.chat-date{
		width: 100%;
		clear: both;
		display: block;
		float: initial;
	}

	body.recipient-user .chat-message.outbox,
	body.recipient-admin .chat-message.inbox{
		margin: 30px 0px 30px 20px;
	}

	body.recipient-user .chat-message.inbox,
	body.recipient-admin .chat-message.outbox{
		margin: 30px 30px 30px 0px;
	}

	.chat-message,
	.chat-message p,
	.chat-message .link,
	.chat-message span{
		max-width: 80vw;
		font-size: 13px !important;
	}
	
	/* Menu - Mobile */

	body.show-mobile-menu header{
		z-index: 999;
		background: var(--brand-color-10pc, #eee) !important;
	}
	
	
	body.show-mobile-menu nav#global{
		height: 100%;
	}
	
	body.show-mobile-menu content{
		display: none;
	}

	body.show-mobile-menu .search-box{
		display: none !important;
	}
	
	body.show-menu nav#main{
		display: none;
		clear: both !important;
		position: absolute !important;
		z-index: 999 !important;
		top: 100px !important;
		padding: 20px;
		height: calc(100% - 60px) !important;
		min-height: initial !important;
		overflow-y: scroll;
		overflow-x: hidden;
        min-height: 100vh !important;
        height: auto !important;
	}
	
	nav#main .menu-item{
		display: block;
		margin: 0px 0px 20px 0px;
		width: 100%;
	}
	
	body.show-mobile-menu nav#main{
		display: block !important;
		width: 100% !important;
		max-width: initial !important;
		opacity: 1 !important;
		text-align: left !important;
        position: absolute !important;
        background-color: transparent !important;
        top: 100px !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        min-height: 300vh !important;
        height: auto !important;
	}
 
    body.show-mobile-menu nav#main .menu-item a{
        padding: 20px;
        font-size: 17px !important;
        border-bottom: 1px solid #eee;
        color: var(--brand-color, black);
        width: 100%;
        display: block;
    }
    
    .current_page_item a{
        font-weight: bold;
    }
 
     body.show-mobile-menu nav#main .nav-sticky{
        width: 100% important;
     }
	
	body .user-button{
		text-indent: -1000px;
		overflow: hidden;
		background-color: transparent;
		background-size: 20px;
		height: 40px;
		padding: 5px;
		position: relative;
		display: inline-block;
		top: -4px;
		right: 65px;
		min-width: 40px;
		margin: 0px 0px 0px 10px;
		float: right;
		border-color: transparent;
	}
	
	body:not(.logged-in) .user-button {
		text-indent: -1000px;
		overflow: hidden;
		border-color: transparent;
		background: var(--brand-color);
		color: white;
		top: 2px;
		right: 20px;
		width: 70px;
		height: 30px;
		min-height: 30px;
		line-height: 20px;
	}
	
	body:not(.logged-in) .user-button:before{
		content: "Login";
		display: block;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		text-indent: 0px;
		padding: 5px 10px;
	}
	
	body.logged-in .user-button{
		text-indent: -1000px;
		overflow: hidden;
		background: url(icons/profile/icons8-user.svg) no-repeat center;
		background-size: 20px;
		width: 40px;
		padding: 5px;
		position: relative;
		display: inline-block;
		top: -2px;
		right: 50px;
		min-width: 40px;
		margin: 0px 0px 0px 10px;
		float: right;
		border-color: transparent;
	}
	
	/* Content - Mobile */
	
	body, content, footer {
		width: 100% !important;
		position: initial !important;
		clear: both !important;
		left: initial !important;
		top: initial !important;
		margin: 0px !important;
	}
	
	content{
		margin-top: 0px !important;
		padding: 40px 26px;
        max-width: 100vw !important;
	}
	
	content h2{
		margin: 30px 30px 30px 0px !important;
		font-size: 20px !important;
	}
	
	.tile.detail {
		width: 100% !important;
		float: initial !important;
	}
	
	.tile .tile-thumb{
		height: 55px !important;
		width: 55px !important;
		line-height: 50px !important;
	}
	
	.tile.detail h3{
		margin: 15px 0px 30px !important;
	}
	
	.tile.actions {
		float: initial;
		position: initial;
		width: 100%;
		top: initial;
		border: initial;
		background: initial;
		box-shadow: initial;
		-webkit-box-shadow: initial;
		-moz-box-shadow: initial;
		-ms-box-shadow: initial;
	}
	
	nav#main{
		width: 100% !important;
		position: initial !important;
		clear: both !important;
		left: initial !important;
		top: initial !important;
		margin: 0px !important;
		display: none !important;
	}
	

	/* Footer - Mobile */
	
	footer #supplementary .widget-area {
		width: 100%;
		display: block;
		margin: 10px 0px;
	}
	
	footer #supplementary{
		padding: 0px;
	}
	
	footer{
		padding: 20px;
		border: none;
		background: none;
	}
	
	footer aside {
		margin-top: 30px;
	}
	
	footer .footer{
		width: 100%;
        padding-bottom: 50px !important;
	}
	
	.footer .legal {
		padding: 20px 0px;
	}
	
	.footer .legal-links{
		display: block;
		clear: both;
		width: 100%;
	}
	
	.footer .legal a {
		display: inline-block;
		margin: 20px 5px 20px 0px;
	}
    
}
