/*
Theme Name: Waystar Dev Portal
Theme URI: https://github.com/elementor/hello-theme-child
Description: Waystar Dev Portal is a child theme of Hello Elementor
Author: LavaVein
Author URI: https://lavavein.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
/*
  Reference: hello-elementor breakboints
  max-width: 575px - mobile
  min-width: 576px - small
  min-width: 768px - medium
  min-width: 992px - large
  min-width: 1200px - big large
*/
/* Set Primary Colors for use  */
:root {
  --body--background-color: #FFF;
  --body--color: #3b4752;
  --interaction: #e2592e;
}

/* Set Shared sizes */
:root {
  --body--containerWidth: auto;
  --body--padding--leftRight: 20px;
  --breadcrumbs--height: 60px;
  --page-container--sideMargins: 0px;

  /* it is increased on desktop */
}

/* Variables changed via jquery - values here are fallbacks */
:root {
  --header--height: 90px;
  --footer--height: auto;
  --mm-menu_persistent--listview--height: auto;
}

/* Layout and Menu */
#docs-menu-content {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* Native Elements + Typography */
body {
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 300;
  color: var(--body--color);
  background-color: var(--body--background-color);
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.page-content ul {
	margin-bottom: 1.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1;
  font-style: normal;
}

.h1, .h2, .h3, h1, h2, h3 {
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  line-height: 1.1;
}

.h1, h1 {
  font-size: 3rem;
}

.h2, h2 {
  font-size: 2.5rem;
	font-weight: 700;
}

.h3, h3 {
  font-size: 1.5rem;
}

.h4, h4 {
  font-size: 1.25rem;
}

.h5, h5 {
  font-size: 1.15rem;
}

.h6, h6 {
  font-size: 1.05rem;
}

.single-document .h1,
.single-document h1 {
	font-size: 2.375rem;
}

.single-document .h2,
.single-document h2 {
	font-size: 1.5rem;
}

.single-document .h3,
.single-document h3 {
	font-size: 1.25rem;
}

blockquote {
  margin: 0 0 1rem;
  padding-left: 0;
  border-left: none;
  font-size: 1.2rem;
  line-height: 1.65;
  font-style: normal;
}

@media (min-width: 768px) {
  .h1, h1 {
    font-size: 3rem;
    letter-spacing: 4px;
  }

  .h2, h2 {
    letter-spacing: 3px;
  }

  .h3, h3 {
    letter-spacing: 2px;
  }

  blockquote {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .h1, h1 {
    font-size: 2.1rem;
  }

  .h2, h2 {
    font-size: 1.6625rem;
  }

  .h3, h3 {
    font-size: 1.05rem;
  }
}

a {
  color: var(--interaction)
}

[type=button],
[type=submit],
button {
  color: var(--interaction);
  border-color: var(--interaction)
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
  background-color: var(--interaction);
}

/* Primary Layout */
.page-body {
  display: flex;
  flex-flow: row nowrap;
}

.main-grid-desktop {
  /* height: 100vh;
  overflow: hidden; */
}

.body-innerWrap {
  /* display: flex;
  flex-flow: column;
  height: 100vh;
  overflow: hidden;
  align-items: stretch; */
}

.page-mainFooterWrap {
  /* flex-grow: 1;
  overflow-y: auto; */
}

.site-header,
.site-breadcrumbs,
.site-main,
.site-footer {
  padding: 0 var(--body--padding--leftRight)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  box-shadow: 0 -12px 12px 10px rgba(0, 0, 0, .15);
  z-index: 1;
  width: 100%;
  background-color: var(--body--background-color);
}

.site-branding {
	max-width: 300px;
}

/* Move down when WordPress admin bar is present */
.admin-bar .site-header {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}

.site-header, body:not([class*=elementor-page-]) .site-main {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.header-buffer {
  height: var(--header--height);
}

/* Landing page specific grid overrides */

/* Breadcrumbs */
.breadcrumbs {
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
  padding-left: 0;
}

.breadcrumbs li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.breadcrumbs .separator {
  font-size: 18px;
  font-weight: 200;
  color: #eeeeee;
}

.site-breadcrumbs {
  background-color: #586775;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  align-items: center;
  height: var(--breadcrumbs--height);
  flex-shrink: 0;
}

.site-breadcrumbs a {
  color: #ffffff;
}

.site-breadcrumbs a:hover {
  text-decoration: underline;
}

.row--site-main {
  display: flex;
  min-height: calc(100vh - var(--header--height) - var(--breadcrumbs--height) - var(--footer--height));
}

.site-main {
  flex-grow: 1;
  padding: 50px;
  overflow-x: hidden;
  overflow-y: auto;
}

.site-main.site-main-flush {
	padding-top: 0;
	padding-bottom: 0;
}

section.comments-area {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.site-header, .site-footer {
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-footer {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.ul--jumpTo {
  column-count: 2;
  column-width: 240px;
  column-gap: 20px;
  list-style: none;
  padding-left: 10px;
}

.ul--jumpTo > li {
  position: relative;
  padding-left: 12px;
}

.ul--jumpTo > li > a::before {
  content: '';
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--interaction);
  border-top-width: 6px;
  border-bottom-width: 6px;
}
.ul--jumpTo > li > a:hover::before {
  border-left-color: #336;
}

/* Sidebar */
.mm-menu.mm-menu_persistent {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header--height);
  width: 100%;
  min-width: 440px;
  max-width: 440px;
  height: calc(var(--mm-navbar-size) + var(--mm-menu_persistent--listview--height)); /* +1px maybe? */
  border-right: none;
}

.mm-menu.mm-menu_persistent + .site-main {
  border-left: 1px solid rgba(0, 0, 0, .1);
}

.mm-menu.mm-menu_persistent > .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: 0;
  margin-bottom: 0;
}
.mm-menu.mm-menu_persistent > .mm-panels > .mm-panel::before,
.mm-menu.mm-menu_persistent > .mm-panels > .mm-panel::after {
  content: initial;
}

.mm-panel:first-child .mm-listitem a:first-child {
  padding-left: 44px;
  position: relative;
}

.mm-panel:first-child .mm-listitem a:first-child::after {
  background-color: #ffffff;
  color: #586775;
  font-size: 1.5rem;
  font-weight: 300;
  border: #586775 solid 1px;
  border-radius: 50%;
  content: "+";
  line-height: 26px;
  text-align: center;
  position: absolute;
  top: 13px;
  left: 9px;
  height: 26px;
  width: 26px;
}

.product-family-none .site-breadcrumbs,
.product-family-1 .site-breadcrumbs {
  background-color: #586775;
  background-image: linear-gradient(90deg, rgba(88, 103, 117, 0.5), rgba(88, 103, 117, 0.0)), url("assets/img/bg-breadcrumb/pf-1.jpg");
}

.product-family-2 .site-breadcrumbs {
  background-color: #fcb415;
  background-image: linear-gradient(90deg, rgba(143, 99, 1, 0.70), rgba(143, 99, 1, 0.0)), url("assets/img/bg-breadcrumb/pf-2.jpg");
}

.product-family-3 .site-breadcrumbs {
  background-color: #64c661;
  background-image: linear-gradient(90deg, rgba(44, 117, 42, 0.5), rgba(44, 117, 42, 0.0)), url("assets/img/bg-breadcrumb/pf-3.jpg");
}

.product-family-4 .site-breadcrumbs {
  background-color: #009cdc;
  background-image: linear-gradient(90deg, rgba(0, 94, 133, 0.5), rgba(0, 94, 133, 0.0)), url("assets/img/bg-breadcrumb/pf-4.jpg");
}

.product-family-5 .site-breadcrumbs {
  background-color: #00b5af;
  background-image: linear-gradient(90deg, rgba(0, 119, 115, 0.5), rgba(0, 119, 115, 0.0)), url("assets/img/bg-breadcrumb/pf-5.jpg");
}

.product-family-6 .site-breadcrumbs {
  background-color: #a82e82;
  background-image: linear-gradient(90deg, rgba(87, 23, 67, 0.5), rgba(87, 23, 67, 0.0)), url("assets/img/bg-breadcrumb/pf-6.jpg");
}

.product-family-7 .site-breadcrumbs {
  background-color: #ff6900;
  background-image: linear-gradient(90deg, rgba(136, 56, 0, 0.5), rgba(136, 56, 0, 0.0)), url("assets/img/bg-breadcrumb/pf-7.jpg");
}

.mm-panel:first-child .mm-listitem a:first-child:hover::after {
  color: #ffffff !important;
}

.mm-panel:first-child .mm-listitem:nth-child(1) a:first-child::after {
  color: #586775;
  border: #586775 solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(1) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(1).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(1).mm-listitem_selected a:first-child::after,
#mm-3.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before  {
  background-color: #586775;
}

.mm-panel:first-child .mm-listitem:nth-child(2) a:first-child::after {
  color: #fcb415;
  border: #fcb415 solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(2) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(2).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(2).mm-listitem_selected a:first-child::after,
#mm-4.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before {
  background-color: #fcb415;
}

.mm-panel:first-child .mm-listitem:nth-child(3) a:first-child::after {
  color: #64c661;
  border: #64c661 solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(3) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(3).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(3).mm-listitem_selected a:first-child::after,
#mm-5.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before {
  background-color: #64c661;
}

.mm-panel:first-child .mm-listitem:nth-child(4) a:first-child::after {
  color: #009cdc;
  border: #009cdc solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(4) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(4).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(4).mm-listitem_selected a:first-child::after,
#mm-6.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before {
  background-color: #009cdc;
}

.mm-panel:first-child .mm-listitem:nth-child(5) a:first-child::after {
  color: #00b5af;
  border: #00b5af solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(5) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(5).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(5).mm-listitem_selected a:first-child::after,
#mm-7.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before {
  background-color: #00b5af;
}

.mm-panel:first-child .mm-listitem:nth-child(6) a:first-child::after {
  color: #a82e82;
  border: #a82e82 solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(6) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(6).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(6).mm-listitem_selected a:first-child::after,
#mm-8.mm-panel.mm-panel_opened .mm-listitem.mm-listitem_selected::before {
  background-color: #a82e82;
}

.mm-panel:first-child .mm-listitem:nth-child(7) a:first-child::after {
  color: #ff6900;
  border: #ff6900 solid 1px;
  transition: all .15s ease-in-out;
}

.mm-panel:first-child .mm-listitem:nth-child(7) a:first-child:hover::after,
.mm-panel:first-child .mm-listitem:nth-child(7).mm-listitem_selected::before,
.mm-panel:first-child .mm-listitem:nth-child(7).mm-listitem_selected a:first-child::after {
  background-color: #ff6900;
}

.mm-listitem.mm-listitem_selected {
  font-weight: 700;
  box-shadow: 0px 2px 3px rgba(0,0,0,0.05);
  font-size: 101%;
}

.mm-listitem.mm-listitem_selected > a {
  background-color: rgba(0, 0, 0, .05);
  transition: all .15s ease-in-out;
}

.mm-listitem.mm-listitem_selected > a:last-of-type:not(:only-of-type):hover {
  background-color: rgba(0, 0, 0, .1);
}

.mm-listitem:not(.mm-listitem_selected) > a {
  background-color: transparent;
  transition: all .15s ease-in-out;
}

.mm-listitem:not(.mm-listitem_selected) > a:hover {
  background-color: rgba(0, 0, 0, .025);
}

.mm-listitem.mm-listitem_selected::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background-color: var(--interaction);
}

.mm-panel:first-child .mm-listitem.mm-listitem_selected a:first-child::after {
  color: #FFF;
}


.site-header,
.site-breadcrumbs,
.row--site-main,
.site-footer {
  padding-left: var(--page-container--sideMargins);
  padding-right: var(--page-container--sideMargins);
}

.main-grid-desktop.grid-layout--default .site-main {
  padding-left: var(--page-container--sideMargins);
  padding-right: var(--page-container--sideMargins);
}

.mm-navbar__title.mm-navbar__isRoot::before {
  content: 'Documentation ';
}

@media (max-width: 1200px) {

  .site-header,
  .site-breadcrumbs,
  .site-footer {
    padding-left: var(--body--padding--leftRight);
    padding-right: var(--body--padding--leftRight);
  }

}

/* Desktop -- Large */
@media (min-width: 1200px) {

  :root {
    --page-container--sideMargins: calc(calc(100vw - 1200px) / 2);
  }

  .site-main {
    padding-right: 0;
  }

}

/* Desktop -- Larger */
@media (min-width: 1400px) {

  :root {
    --page-container--sideMargins: calc(calc(100vw - 1400px) / 2);
  }

}

/* Desktop -- Largest */
@media (min-width: 1600px) {

  :root {
    --page-container--sideMargins: calc(calc(100vw - 1600px) / 2);
  }

}

/* Desktop */
@media (min-width: 768px) {
  :root {
    --breadcrumbs--height: 75px;
  }

  .main-grid-desktop {
    /* min-height: 100vh;
    display: grid; */
  }

  .main-grid-desktop.grid-layout--default {
    /* grid-template-rows: max-content auto max-content;
    grid-template-areas:
      "header"
      "main"
      "footer"; */
  }

  .main-grid-desktop.grid-layout--documentation {
    /* grid-template-columns: var(--body--sideMargins) 440px var(--body--containerWidth) var(--body--sideMargins);
    grid-template-rows: max-content var(--breadcrumbs--height) auto max-content;
    grid-template-areas:
      "header header header header"
      "breadcrumb breadcrumb breadcrumb breadcrumb"
      ". doc-nav main ."
      "footer footer footer footer"; */
  }

  .main-grid-desktop.grid-layout--documentation .site-main {
    /* grid-column-start: main-start;
    grid-column-end: breadcrumb-end; */
  }

  .body-innerWrap {
    /* display: contents; */
  }

  .main-grid-desktop.grid-layout--documentation .wpmm-menu {
    /* grid-area: doc-nav;
    display: block;
    position: relative;
    width: 100%; */
  }

  .mm-navbars_top,
  .mm-listitem__text {
    padding-left: var(--body--padding--leftRight);
  }

  .site-header {
    /* grid-area: header; */
    /* position: fixed;
    width: 100%;
    z-index: 1;
    background-color: var(--body--background-color); */
  }

  .site-breadcrumbs {
    /* grid-area: breadcrumb; */
  }

  .site-main {
    /* grid-area: main; */
  }

  .site-footer {
    /* grid-area: footer; */
  }

  .breadcrumbs {
    padding-left: 0;
  }

  #docs-menu-button {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --mb-button-size: 44px;
    /* --mb-bar-width: 0.6; */
    --mb-bar-height: 2px;
    --mb-bar-spacing: 8px;
    --mb-button-width: var(--mb-button-size);
    --mb-button-height: 32px;
  }

  .site-header,
  .site-main,
  .site-footer {
    padding-left: var(--body--padding--leftRight) !important;
    padding-right: var(--body--padding--leftRight) !important;
  }

  #docs-menu-button {
    width: var(--mb-button-width);
    height: var(--mb-button-height);
    padding: 0;
    margin-right: 8px;
  }
  #docs-menu-button::after {
    content: 'Docs';
    text-transform: uppercase;
    font-size: 8px;
    font-weight: 700;
    opacity: 0.5;
    position: absolute;
    display: block;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
}

  .site-breadcrumbs {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

}

@media (max-width: 875px) {

  .site-branding {
    max-width: 160px;
  }

  /* Shrink logo to hide text portion */
  .site-branding .custom-logo-link {
    width: 50px;
    overflow: hidden;
  }

  .site-branding .custom-logo {
    width: auto;
    height: 48px;
    overflow: visible;
    max-width: none !important;
  }

}

@media (max-width: 1000px) {
  .site-branding {
    max-width: 200px;
  }
}

/* ws-container */
.ws-container {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 575px) {
  .ws-container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (min-width: 576px) {
  .ws-container {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .ws-container {
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .ws-container {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .ws-container {
    max-width: 960px;
  }
}

/* Top Banner Nav */
.menu-item {
  border-bottom: 4px solid transparent;
  font-weight: bold;
}

.menu-item.current-menu-item {
  color: #000;
  border-bottom-color: var(--interaction)
}

.menu-item.current-menu-item a {
  color: #000;
}

/* MOBILE NAV */
.site-mobileNavigationBanner {
  display: none;
  background-color: #3b4a57;
  flex-wrap: nowrap;
}

.site-mobileNavigationBanner .menu-logged-out-container {
  width: 100vw;
}

.ws-body.is-safari .page-mainFooterWrap {
  /*padding-top: 75px;*/
}

@media (max-width: 768px) {

  .site-branding {
    max-width: 165px;
  }

  /* Shrink logo to hide text portion */
  .site-branding .custom-logo-link {
    width: 100%;
  }

  .site-branding .custom-logo {
    width: 100%;
    height: 100%;
  }

  .site-header .site-navigation,
  .site-header .site-avi {
    display: none;
  }

  .site-header .site-branding {
    margin: 0 10px;
  }

  .site-mobileNavigationBanner {
    display: flex;
  }

  .site-mobileNavigationBanner .menu-primary-container {
    flex-grow: 1;
  }

  .site-mobileNavigationBanner .site-navigation ul.menu {
    flex-wrap: nowrap;
  }

  .site-mobileNavigationBanner .site-navigation ul.menu li {
    justify-content: center;
    flex-grow: 1;
    border-right: solid 1px rgba(255,255,255,.4);
    height: 70px;
    align-items: center;
    width: 10px
  }

  .site-mobileNavigationBanner .site-navigation ul.menu li:not(.current_page_item):hover {
    border-bottom-color: rgba(255,255,255,.4);
  }

  .site-mobileNavigationBanner .site-navigation ul.menu li a {
    color: #FFF;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-mobileNavigationBanner .site-avi {
    margin: 5px 10px;
    flex-shrink: 0;
  }

  .site-search {
    margin-left: auto !important;
  }

}

@media (max-width: 500px) {

  .site-header {
    flex-wrap: nowrap;
  }

  .site-branding {
    max-width: 160px;
  }

  /* Shrink logo to hide text portion */
  .site-branding .custom-logo-link {
    width: 50px;
    overflow: hidden;
  }

  .site-branding .custom-logo {
    width: auto;
    height: 48px;
    overflow: visible;
    max-width: none !important;
  }

  .site-mobileNavigationBanner .site-navigation ul.menu li a {
    font-size: 14px;
  }

}


/* Search */

.site-search-results {
  margin-top: 50px
}

.search-result-header {
  margin-top: 0;
}

.search-result-header + p {
  margin-bottom: 50px;
  border-bottom: solid 2px rgba(0,0,0,.12);
  padding-bottom: 40px;
}

.pagination.pagination--search-results {
  display: flex;
  justify-content: space-between;
}

/* Side Nav */
.wpmm-menu {
  --mm-color-background: #FFF;
  background-color: var(--body--background-color) !important;
  border-right: 1px solid rgba(0, 0, 0, .1)
}

.mm-navbars_top {
  background-color: var(--body--background-color);
  padding-left: 0;
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left: 1px solid rgba(0, 0, 0, .05);
}

.mm-listitem:after {
  left: 0;
}

/* Footer */
.legal {
  font-size: 80%;
  font-weight: 300;
}

/* Comments */
.comments-area {
  margin-top: 150px;
}

/* Glossary */

.glossary-items h3 {
  border-top: solid 1px rgba(0,0,0,.1);
  padding-top: 35px;
}

.glossary-items h3 + p {
  margin-bottom: 35px;
}

/* documentation pages */

.document h2 {
  margin-bottom: 40px;
  margin-top: 70px;
}

.document h4 {
  margin-top: 50px;
}

* h4:first-child {
  margin-top: 40px;
}

.document .wp-block-ub-content-toggle {
  margin: 50px 0 20px 0;
}

.document .wp-block-table {
  margin: 0 0 0 0;
}

.document ul li {
  ​​​​​​​​margin-bottom: 12px;
  line-height: 1.6;
}

.document .wp-block-image {
  margin: 25px 0;
}

.document strong {
  font-weight: 500;
}

/* --- CUSTOM STYLING FOR ULTIMATE MEMBER PLUGIN --- */


.site-avi {
	background-image: url("assets/img/avatar-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	font-size: 22px;
	font-weight: 400;
	text-align: center;
	line-height: 60px;
	height: 60px;
	width: 60px;
  margin-left: 20px;
	display: block;
	cursor: pointer;
	position: relative;
}
.site-avi .site-avi-details {
	background: #ffffff;
	color: var(--body--color);
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
	padding: 20px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
	border-radius: 5px;
	position: absolute;
	top: 60px;
	right: 0;
	z-index: 1000;
	display: none;
}
.site-avi .site-avi-details a {
	font-size: 16px;
	line-height: 30px;
	font-weight: 700;
	margin-top: 20px;
	display: inline-block;
}
.site-avi .site-avi-details-name {
	font-size: 18px;
	font-weight: 700;
}
.site-avi:hover .site-avi-details {
	display: block;
}

/* Link colors */
.um a.um-link,
.um .um-tip:hover,
.um .um-field-radio.active:not(.um-field-radio-state-disabled) i,
.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i,
.um .um-member-name a:hover,
.um .um-member-more a:hover,
.um .um-member-less a:hover,
.um .um-members-pagi a:hover,
.um .um-cover-add:hover,
.um .um-profile-subnav a.active,
.um .um-item-meta a,
.um-account-name a:hover,
.um-account-nav a.current,
.um-account-side li a.current span.um-account-icon,
.um-account-side li a.current:hover span.um-account-icon,
.um-dropdown li a:hover,
i.um-active-color,
span.um-active-color
{
    color: #FF6900 !important;
}

.um a.um-link:hover,
.um a.um-link-hvr:hover {
    color: #44b0ec !important;
}

/* Button colors */
.um .um-field-group-head,
.picker__box,
.picker__nav--prev:hover,
.picker__nav--next:hover,
.um .um-members-pagi span.current,
.um .um-members-pagi span.current:hover,
.um .um-profile-nav-item.active a,
.um .um-profile-nav-item.active a:hover,
.upload,
.um-modal-header,
.um-modal-btn,
.um-modal-btn.disabled,
.um-modal-btn.disabled:hover,
div.uimob800 .um-account-side li a.current,
div.uimob800 .um-account-side li a.current:hover,
.um .um-button,
.um a.um-button,
.um a.um-button.um-disabled:hover,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:active,
.um input[type=submit].um-button,
.um input[type=submit].um-button:focus,
.um input[type=submit]:disabled:hover
{
	background: #FF6900 !important;
	color: #ffffff !important;
	font-size: 22px !important;
	font-weight: 600 !important;
	line-height: 36px !important;
	padding: 6px 32px !important;
	border: #ff6900 solid 1px !important;
	border-radius: 0 !important;
}

.um .um-field-group-head:hover,
.picker__footer,
.picker__header,
.picker__day--infocus:hover,
.picker__day--outfocus:hover,
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted,
.picker__list-item:hover,
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted,
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected,
.um .um-button:hover,
.um a.um-button:hover,
.um input[type=submit].um-button:hover{
	color: #ffffff !important;
	background: #ef7622 !important;
	border-color: #ef7622 !important;
}

/* Button alt colors */
.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
	background: transparent !important;
	color: #3b4752 !important;
	border: #3b4752 solid 1px !important;
	box-shadow: none !important;
}

.um .um-button.um-alt:hover,
.um input[type=submit].um-button.um-alt:hover {
  background: #FF6900 !important;
	color: #ffffff !important;
	border: #ff6900 solid 1px !important;
}
