.custom_arrows {
    display: flex;
    align-items: center;
    justify-self: flex-end;
    max-width: 96px;
}
.custom_arrows .slick_arrow {
    top: auto;
    transform: translateY(0%);
    filter: none;
    position: relative;
}
.custom_arrows .arrow_prev {
    margin-right: 16px;
}
.custom_arrows .arrow_next {
    margin-left: 16px;
}
.custom_arrows .arrow_divider {
    width: 2px;
    height: 38px;
    background-color: var(--grey-color);
} 

@media screen and (max-width: 767.98px) {  
    .custom_arrows .slick_arrow img{
        width: 10px;
    }
    .custom_arrows .arrow_prev {
        margin-right: 12px;
    }
    .custom_arrows .arrow_next {
        margin-left: 12px;
    }
    .custom_arrows .arrow_divider {
        width: 1px;
        height: 32px; 
    } 
}