.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-logo-drag-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.horizontal-logo-drag-wrapper {
    height: 20%;
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

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

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

.horizontal-logo-drag-button.next 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);
}

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

    .horizontal-logo-drag-button {
        padding: 0.2rem 0.4rem 0.2rem 0.4em;
    }

    .horizontal-logo-drag-button.next {
        right: 4% !important;
        padding: 7.5px 10px !important;
    }
}