﻿button.slick-next.slick-arrow {
    width: 28px;
    height: 25px;
    display: block;
    background-color: rgba(50, 141, 163, 0.67);
    border-radius: 32px;
    transition: all 0.33s;
    right:3px;
}

button.slick-next.slick-arrow:hover, button.slick-next.slick-arrow:focus {
    width: 40px;
    height: 100%;
    border-radius: 50px 0px 0px 50px !important;
        background-color: rgba(50, 141, 163, 0.47);
    width: 32px; 
    right:0px;
    transform: translate(0px,-50%);
}

.slick-next:before {
    content: '→';
    color: white;
        opacity: 0.9;
}
button.slick-prev.slick-arrow {
    width: 28px;
    height: 25px;
    display: block;
    background-color: rgba(50, 141, 163, 0.67);
    border-radius: 32px;
    transition: all 0.33s;
    left: 3px;
}

button.slick-prev.slick-arrow:hover, button.slick-prev.slick-arrow:focus {
    width: 40px;
    height: 100%;
    border-radius: 0px 50px 50px 0px !important;
     background-color: rgba(50, 141, 163, 0.47);
    width: 32px;
    left:0px;
    transform: translate(0px,-50%);
}
.slick-prev:before {
    content: '←';
        opacity: 0.9;
}