.transparent-full-screen {
    display: contents;
}

.transparent-full-screen .modal-content {
    background-color: rgba(0,0,0,0);
    height: 100%;
    width: 100%;
}

.image-view-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 5vmin;
    font-weight: bolder;
    color: #fff;
    line-height: 100%;
    text-shadow: #0000007d 1px 0 10px;
    z-index: 1001;
    cursor: pointer !important;
    padding: 10px;
}

.image-viewer {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.img-list-on-view {
    max-width: 75%;
    overflow-x: scroll;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
}

.img-list-on-view::-webkit-scrollbar {
    height: 12px;
    background-color: rgba(255, 255, 255, 0);
}

.img-list-on-view::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.90);
    border-radius: 0.4rem;
}

.img-list-item {
    height: 70px;
    width: 70px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.border-4 {
    border-width: 0.4ch;
}

.border-3 {
    border-width: 0.3ch;
}

.border-2 {
    border-width: 0.2ch;
}

.image-select {
    animation: image-select 0.1s ease-in;
}

@keyframes image-select {
    from {
        transform: translateX(5px);
    }

    to {
        transform: translateX(0px);
    }
}

.image-view {
    cursor: grab !important;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.image-view:active {
    cursor: grabbing !important;
}