/* These styles are used in the backend editor AND in the Theme (frontend) */

/* Most themes nowadays provide an extra stylesheet of classes which WordPress itself then */
/* applies to the backend editor TinyMCE. However, custom CSS - set in Plugins, in the WP  */
/* Customizer or in Theme options, will normally not be reflected to TinyMCE. So better to */
/* put such styles all here, where they will apply to TinyMCE *and* the frontend.          */

/* The goal is not only to make the visual editor display look as much like the frontend as    */
/* possible, but also to make sure that all important CSS classes are available for convenient */
/* selection in TinyMCEs "Formats" dropdown - so do not forget to configure the TinyMCE styles */
/* dropdown with elements to match those here.                                                 */

/* If you do not need this file then upload an empty one (zero bytes) which will not be loaded at all. */

kbd {
  border-radius: 3px;
  font-family: Consolas, "Lucida Console", monospace;
  display: inline-block;
  line-height: normal;
  font-size: small;
  vertical-align: baseline;
  background: #eee;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  letter-spacing: 1px;
  border: 1px solid black;
  box-shadow: 1px 1px 1px #777;
  /* font-variant: small-caps; */
  padding: 3px 4px;
  margin: 1px 2px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
kbd:hover, kbd:hover * {
  color: black;
  /* box-shadow: 1px 1px 1px #333; */
}
kbd:active, kbd:active * {
  color: black;
  box-shadow: 1px 1px 0px #ddd inset;
}
kbd kbd:hover {
  box-shadow: 0px 0px 0px black;
}

kbd:active kbd {
  box-shadow: 0px 0px 0px black;
  background: none;
}


// Basic Classes

[data-elementor-device-mode="mobile"] .nobreak {
    display: inline-block;
}
.pad1b {
	padding-bottom: 1em;
}
.pad1t {
	padding-top: 1em;
}
.mar1b {
	margin-bottom: 1em;
}
.mar1t {
	margin-top: 1em;
}


.alignleft, .alignright {
    max-width: 50%;
    width: auto;
}

.alignleft {
    margin: 0 2.3rem 2.3rem 0;
}

.alignright {
    margin: 2.3rem 0 0 2.3rem;
}

.wp-block-buttons {
    margin-bottom: 2em;
}

.wp-block-gallery.has-nested-images {
    padding-top: 2em;
    clear: both;
}

mark.has-inline-color {
    background-color: inherit;
}


