.custom-drag-cursor {
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid #fff;
    opacity: .8;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.custom-drag-cursor::after {
    content: "Povleci";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    mix-blend-mode: difference;
}

.horizontal-gallery-drag-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.horizontal-gallery-drag-wrapper {
    height: 20%;
    min-height: 400px;
    width: 60%;
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.horizontal-gallery-drag-box {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 15px;
    position: relative;
    flex-shrink: 0;
}

.horizontal-gallery-image-container {
    width: 100%;
    max-height: 100%;
}

.horizontal-gallery-drag-box img {
    max-width: 100%;
    border-radius: 6px;
    height: auto;
    object-fit: contain;
}

.horizontal-gallery-drag-box.active {
    filter: blur(0px);
}

.horizontal-gallery-drag-button.prev {
    position: absolute;
    top: 18%;
    left: 10%;
    transform: translateY(-50%);
}

.horizontal-gallery-drag-button.next {
    position: absolute;
    top: 18%;
    right: 10%;
    transform: translateY(-50%);
}

.horizontal-gallery-drag-button.next svg {
    transform: rotate(90deg);
}

.horizontal-gallery-drag-button.prev svg {
    transform: rotate(-90deg);
}

.arrow-right.icon,
.arrow-left.icon {
    color: #fff;
    position: relative;
    width: 16px;
    height: 1px;
    background-color: currentColor;
}

.arrow-right.icon:before {
    content: '';
    position: absolute;
    right: 1px;
    top: -5px;
    width: 10px;
    height: 10px;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.arrow-left.icon:before {
    content: '';
    position: absolute;
    left: 1px;
    top: -5px;
    width: 10px;
    height: 10px;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

.gallery-content {
    text-align: justify;
}

/* lg */
@media screen and (max-width: 992px) {
    .horizontal-gallery-drag-button.prev {
        left: 2%;
        top: 12%;
    }

    .horizontal-gallery-drag-button.next {
        right: 2%;
        top: 12%;
    }

    .horizontal-gallery-drag-wrapper {
        width: 80%;
    }
}

/* md */
@media screen and (max-width: 768px) {
    .horizontal-gallery-drag-box {
        width: 100%;
        padding: 0px;
    }

    .horizontal-gallery-drag-button {
        display: none;
    }

    .horizontal-gallery-drag-button.prev {
        left: 20%;
        top: 0%;
        transform: translateY(0%);
    }

    .horizontal-gallery-drag-button.next {
        right: 20%;
        top: 0%;
        transform: translateY(0%);
    }

    .horizontal-gallery-drag-wrapper {
        margin-top: 50px;
        width: 100%;
    }

    .horizontal-gallery-buttons button {
        font-size: 0.5625rem !important;
        line-height: 10px;
        letter-spacing: 1.2px;
        padding: 10px 10px !important;
    }
}