.a-slide-off {  display: none;}
.a-slide-on {display:flex;}

.a-slide-cover {
  --a-index-slide: 1050;
  --a-slide-corner: 16px;
  --a-slide-bg: rgba(0, 0, 0, 0.60);

  justify-content: flex-end;
  height:inherit;
  padding-right: 1em !important;
  padding-bottom: 1em !important;

  & .a-slide-box {
    height: inherit;
    min-height: 26em;
    min-width: 13em;
    border-radius: calc(var( --a-slide-corner) + 1px);
    background-color: var( --a-slide-bg);
    padding: none;
    border: 3px ridge #C0C0C0;
    box-shadow: 0px 0px 13px rgba(0,0,0, .65);
    overflow: hidden;

    & .card-header{
      display: flex;
      align-items: center;
      justify-content: end;
      border-top-left-radius: var( --a-slide-corner);
      border-top-right-radius: var( --a-slide-corner);
      font-weight: bolder;
      min-height: calc( var(--a-min-height-header) + 2.30em);
      margin: none;

      & span[data-tag='html-title']{
        font-weight: bold;
        border: none;
        height: auto;
        color: #000000;
        width: 100%;
        padding: var(--a-padding);
        font-size: calc( 1.25em + 0.85vw);
        font-size-adjust: 0.63;
        text-align: center;
      }

      & button[data-tag='btn-close'] {
        border: none;
        height: 100%;
        width: 4em;
        padding:6px;
      }
    }

    & .card-body {
      min-height: 13em;
      overflow: scroll;
      margin: none;
      border:none;
    }

    & .card-footer{
      border-bottom-left-radius: var( --a-slide-corner);
      border-bottom-right-radius: var( --a-slide-corner);
      padding: 3px 13px;
      height: 5em;
    }

    & .card-header,
    & .card-footer {
      background-color: rgba(255,255,255, 0.60);
      color: #FFFFFF;
      margin: none;
      border: 1px solid rgba(255,255,255,0.35);
    }
  }
}


@media (max-width: 767px) {
  .a-slide-box {
    width: inherit;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .a-slide-box {
    width: 50%;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .a-slide-box {
    width: 35%;
  }
}
