.body-container {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.div-iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.iframe-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
}

img {
    height: intrinsic;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#download>a>.floating-button {
    width: 100%;
    z-index: 99999;
}

#download {
    opacity: 0;
    width: 40%;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 99999;

    transition: opacity 0.8s ease,  transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);;
}

/* Animação de pulsar */
  @keyframes pulsar {
    0% {  filter: brightness(100%); }
    50% { filter: brightness(50%) }
    100% { filter: brightness(100%) }
  }

  /* Quando aparece na tela */
  .visivel {
    opacity: 1 !important;
    transform: scale(1);
    pointer-events: all;
    animation: pulsar 1.5s ease-in-out infinite;
  }

.popLoad {
    position: fixed;
    background: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
    transition: all 0.3;
}

.popLoad .spinner-border {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: blue;
    border-width: .3rem;
    transition: all 0.3;
}

.rownopad {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
}