
/*XD:
  Background color: RGB(54, 93, 62)
  Blur: 16
  Brightness: 15
  Effect Opacity: 34%

  CSS:
  background-color: rgba(54, 93, 62, 0.34);
  backdrop-filter: blur(16px) brightness(115%);
  The blur stays in pixel.
  The brightness in XD is -50 to +50. I would say it goes from -50% to -50% from 100% so its the same interval as 50% to 150%.
  The effect opacity in XD is at 0% without color and with 100% full color. So its the same as setting the opacity of the background-color from 0 to 1.
  */


:root {
    --vendor-color: #F1AD09;
    --template-header-color: #000000;
    --template-text-color: #000000;
    --template-background-color: #ffffff;
    --template-bottom-menu-color: #5c5b5b;
}

html, * {
    margin: 0;
    padding: 0;
}
*{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    /*-moz-transition: color .5s ease;
   -o-transition: color .5s ease;
   -webkit-transition: color .5s ease;
   transition: color .5s ease;*/
}
html {
    font-size: 10px;
    overflow: hidden;
}

h1, h2, h3, h4, h5, ul, p, figure {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

body {
    letter-spacing: .06rem;
    font-family: fontName1;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

div:focus, /**:focus input, */label  {         /*button:focus, button,*/
    outline: 0 !important;
    -webkit-appearance: none;
}
/* Remove outline for non-keyboard :focus */
*:focus:not(.focus-visible) {
    outline: none;
}

/* Optional: Customize .focus-visible */
.focus-visible {
    outline-color: lightgreen;
}

:active {
    outline:none !important;
}
button, button:active, button:focus {
    outline: none;
}
a, button {
    -ms-touch-action: manipulation;	/* IE10  */
    touch-action: manipulation;		/* IE11+ */
}

.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
}

.crs {
    cursor: pointer;
}

.h08:hover {
    opacity: 0.8;
}

.dn {
    display: none;
}
.dni {
    display: none !important;
}

.effectDark {
    filter: brightness(50%);
}

.backdrop1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    opacity: 0.5;
}

.dis_05 {
    opacity: 0.5;
}

.disEvent_05 {
    opacity: 0.5;
    pointer-events: none;
}

.disEvent {
    opacity: 0.3;
    pointer-events: none;
}


