﻿.anim200l-color {
    transition: color 0.2s linear;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
}

.anim200cb {
    transition: all 0.2s cubic-bezier(.25, .25, .25, 1.25);
    -webkit-transition: all 0.2s cubic-bezier(.25, .25, .25, 1.25);
    -moz-transition: all 0.2s cubic-bezier(.25, .25, .25, 1.25);
    -o-transition: all 0.2s cubic-bezier(.25, .25, .25, 1.25);
}

.switchSelectorDefault {
    font-size: 16px;
    font-family: helvetica, sans-serif;
    background-color: #F1F1F1;
    border-radius: 20px;
    height: 34px;
    cursor: pointer;
    display: flex;
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

    .switchSelectorDefault.not-active .option {
        color: #A9A9A9 !important;
    }

    .switchSelectorDefault .option {
        border-radius: 22px;
        color: #000000;
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
        z-index: 2;
    }

        .switchSelectorDefault .option.not-active {
            color: #A9A9A9 !important;
        }

    .switchSelectorDefault .marker {
        position: absolute;
        border-radius: 22px;
    }

    .switchSelectorDefault .option.blue:hover {
        color: #3ac1ef;
    }

    .switchSelectorDefault .option.green:hover {
        color: #94cd0a;
    }

    .switchSelectorDefault .option.purple:hover {
        color: #6958a4;
    }

    .switchSelectorDefault .option.darkred:hover {
        color: #9e0039;
    }

    .switchSelectorDefault .option.blue.selected {
        color: #ffffff;
        background-color: #3ac1ef;
    }

    .switchSelectorDefault .option.green.selected {
        color: #ffffff;
        background-color: #94cd0a;
    }

    .switchSelectorDefault .option.purple.selected {
        color: #ffffff;
        background-color: #6958a4;
    }

    .switchSelectorDefault .option.darkred.selected {
        color: #ffffff;
        background-color: #9e0039;
    }
