
.slick-dots {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;

    button {
        background-color: #FFF;
        border: 1px solid #272247;
        border-radius: 10px;
        text-indent: -9999px;
        height: 18px;
        width: 45px;
        transition: width 0.3s ease;
        &:hover {
            cursor: pointer;
            background-color: #272247;
        }
    }
    .slick-active {
        button {
            width: 90px;
            background-color: #272247;
        }
    }
}

.vxm-sf-nhighlights__items {
    position: relative;
    .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateX(-50%);
        background-color: transparent;
        border: none;
        width: 45px;
        height: 46px;
        padding: 0;
        display: block;
        &:hover {
            cursor: pointer;
        }
    }
    .slick-next {
        right:-85px;
    }
    .slick-prev {
        left: -40px;
    }

    
}