.radio-container {
    --white: #fff;
    --smoke-white: #f1f3f5;
    --blue: #47bb67;
}

.radio-container {
    position: relative;
    width: 100%;
 
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.selector {
    position: relative;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    background-color: var(--smoke-white);
}*/

.selecotr-item {
    position: relative;
    flex-basis: calc(100% / 2);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.selector-item_radio {
    appearance: none;
    display: none;
}

.selector-item_label {
    margin: 0px;

    position: relative;
    height: auto;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    line-height: 50px;
    font-weight: 900;
    transition-duration: .5s;
    transition-property: transform, color, box-shadow;
    transform: none;
}

.selector-item_radio:checked+ .selector-item_label {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .5);
    transform: translateY(-2px);
    margin: 0px;
}

.selected_radio_label{
	background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .5);
    transform: translateY(-2px);
    margin: 0px;
}
.slick-prev:before {color:#fff !important;
    content: '←' !important;
}
.slick-next:before,a.headline-link:after{color:#fff !important;
    content: '→' !important;
}
a.headline-link:after{color: #2a41e8 !important;}