.selector {
    position: relative;
    display: flex;
    border-radius: 50px;
    background: #F2F4F9;
    padding: 5px;
}

.selector label {
    z-index: 1;
    cursor: pointer;
    width: auto;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 24px 16px;
    display: flex;
    position: relative;
}

.selector input {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.selector label.active span {
    color: #FFF;
}

.selector span {
    transition: color .2s ease-in-out;
    cursor: pointer;
    color: #586181;
    font-family: 'GraphikLCG-Light', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

@media (max-width: 750px) {
    .selector {
        width: 100%;
    }
    div.selector a {
        width: 100%;
    }
}

@media (hover: hover) and (pointer: fine){
    .selector a:hover span {
        color: #0F3BAC;
    }
    .selector a.active:hover span{
        color: #fff;
    }
}
/* @media (max-width: 400px) {
    div.selector a span {
        font-size: 12px;
    }
} */
