.visualizar-arquivos__container {
    display: block;
    width: 100%;
    height: 550px;
    margin: auto;
    position: relative;
    overflow: auto;
    background-color: #252525;
}

.visualizar-arquivos__wrapper {
    min-height: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visualizar-arquivos__wrapper img {
    display: block;
    max-width: none;
    max-height: none;
}


.visualizar-arquivos__arrows {
    position: absolute;
    width: 100%;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.visualizar-arquivos__arrow {
    background: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: opacity 0.2s ease;
}

.visualizar-arquivos__arrow:hover {
   opacity: 1;
}

.visualizar-arquivos__arrow:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.visualizar-arquivos__arrow--left {
    margin-left: 15px;
}

.visualizar-arquivos__arrow--right {
    margin-right: 15px;
}
