*,
::before,
::after {
  margin: 0px;
  font-family: 'Roboto', sans-serif  !important;
  box-sizing: border-box !important;
  margin:0;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgba(0,0,0, 0.65);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  left:0px;
  height: 100%;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto !important;
  overflow: hidden;
}

div[data-container='blur']{
  position: fixed;
  height: inherit;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--a-index-slide);
  align-items: center;
  padding: 6px 0px;
  backdrop-filter: blur(var(--a-blur));
  overflow: hidden
}

.header-addon{
  --head-text : #FFFFFF;
  --head-title: #FFA43A;
  --head-bg   : #525558;
  --head-fondo: #75C7FF;

  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--head-text);
  padding: var(--a-padding);
  min-height: var(--a-min-height-header);

  & .icon-home{
    display: block;
    width: 3.5em;
    color: var(--head-text);
    height: inherit;
    padding: 3px;
    cursor: pointer;
  }

  & div[data-tag="box-icon"]{
    border:2px solid var(--head-fondo);
    padding: 6px 6px 10px 6px;
    margin-left: 3px;
    border-radius: 50%;
    background-color: var(--head-bg);
    cursor: pointer;

    & a {
      display: block;
      height: auto;
      width: inherit;
      border-radius: inherit;
    }
    &:hover .icon-home {
      color: var( --head-title)
    }
  }

  & .card-title{
    font-size: calc(1.15em + 2.15vw);
    height:auto;
    margin: none;
    width: 100%;
    text-align: center;
    color: var(--head-text);
    font-weight: bold;
    letter-spacing: 3px;
    word-spacing: 5px;

  }

  & .panel-home{
    width: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: var( --a-padding);
    margin: none;
    min-height: inherit;
    height: auto;
  }
}